Ever wanted to express some gratitude to the people you went to school with for the past four years because you’re graduating in 13 days and started writing on R (because Microsoft Word is overrated) but then learned how to use Python while having a project due in 5 days and you need to show your professor how to use Python and R together? Because same. So I took all my problems and combined them into one.

First, I used ’ol reliable, RStudio. I figured since I’m thanking everyone, I might as well start off every messge of gratitude with “thank you for”.

library(reticulate)
ty<-"thank you for"

With handy-dandy Python, I began to differentiate the messages I had for each pal.

rachel= "being my best friend and for always wanting what is best for me."
print('Rachel,',r.ty,rachel)
## Rachel, thank you for being my best friend and for always wanting what is best for me.

nolo= "being the most levelheaded person I've ever met. You've definitely impacted my perspective on life for the better by emulating emotional agility. King moves only."
print('Nolo,',r.ty,nolo)
## Nolo, thank you for being the most levelheaded person I've ever met. You've definitely impacted my perspective on life for the better by emulating emotional agility. King moves only.
richard= "being my go-to."
print('Papa Rich,',r.ty,richard)
## Papa Rich, thank you for being my go-to.
patricia= "being my go-to."
print('Patricia,',r.ty,patricia)
## Patricia, thank you for being my go-to.
abel= "eooow."
print('Abel,',r.ty,abel)
## Abel, thank you for eooow.
kenneth= "running at 6:30 am with me over Lady Bird Lake followed by harmonizing on the ukelele together for free Tyson's tacos."
print('Kenneth,',r.ty,kenneth)
## Kenneth, thank you for running at 6:30 am with me over Lady Bird Lake followed by harmonizing on the ukelele together for free Tyson's tacos.
francine="showing me that you can be soft and strong and loving all in one."
print('Francine,',r.ty,francine)
## Francine, thank you for showing me that you can be soft and strong and loving all in one.
danny= "being so chill and for lighting up my day with your science pun t-shirts that Francine wishes you wore less."
print('Danny,',r.ty,danny)
## Danny, thank you for being so chill and for lighting up my day with your science pun t-shirts that Francine wishes you wore less.
felipe= "being you."
print('Felipe,',r.ty,felipe)
## Felipe, thank you for being you.
melkon= "being an amazing husband to our children!"
print('Melkon,',r.ty,melkon)
## Melkon, thank you for being an amazing husband to our children!
kamea= "teaching me so much."
print('Kamea,',r.ty,kamea)
## Kamea, thank you for teaching me so much.
phoebe= "ugh where do I start."
print('Phoebe,',r.ty,phoebe)
## Phoebe, thank you for ugh where do I start.
zoe= "being the best roommate a girl could ever ask for. I'll always cherish our conversations in the living room. I LOVE YOU!"
print('Zoe,',r.ty,zoe)
## Zoe, thank you for being the best roommate a girl could ever ask for. I'll always cherish our conversations in the living room. I LOVE YOU!
frjimmy= "being the best priest out there. I'm so sad I never got to wear the apron I made of you, but life." 
print('Fr. Jimmy,',r.ty,frjimmy)
## Fr. Jimmy, thank you for being the best priest out there. I'm so sad I never got to wear the apron I made of you, but life.